インターネット


■ ブラウザを表示する

    実行結果
   <プログラム例>
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;   //URL用

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {

            Process.Start("http://www.ys-labo.com/");   //URL
 
            //  Process.Start("My_index.htm");  //ローカルhtml場合は *.exeと同じフォルダにファイルをおく



        }
    }
}